iT邦幫忙

圖解 blind75相關文章
共有 93 則文章
鐵人賽 自我挑戰組 DAY 30

技術 挑戰 blind 75: 以圖解方式練習解題 - 總結

總結 從過去這 75 題 leetcode 的解題歷程 其實可以發現 解題最重要的一件事是先理解題目 能夠明白題目的結構知道需求 才能找出符合需求的解法 解法也...

鐵人賽 自我挑戰組 DAY 30

技術 圖解 blind 75: Bit Manipulation - Number of 1 Bits(3/3)

Number of 1 Bits Write a function that takes an unsigned integer and returns the...

鐵人賽 自我挑戰組 DAY 30

技術 圖解 blind 75: Bit Manipulation - Counting Bits(2/3)

Counting Bits Given an integer n, return an array ans of length n + 1 such that...

鐵人賽 自我挑戰組 DAY 30

技術 圖解 blind 75: Bit Manipulation - Reverse Bits(1/3)

Reverse Bits Reverse bits of a given 32 bits unsigned integer. Note: Note that...

鐵人賽 自我挑戰組 DAY 29

技術 圖解 blind 75: Bit Manipulation - Sum of Two Integers(2/2)

Sum of Two Integers Given two integers a and b, return the sum of the two intege...

鐵人賽 自我挑戰組 DAY 29

技術 圖解 blind 75: Bit Manipulation - Missing Number(1/2)

Missing Number Given an array nums containing n distinct numbers in the range [0...

鐵人賽 自我挑戰組 DAY 29

技術 圖解 blind 75: Bit Manipulation 簡介

圖解 blind 75: Bit Manipulation 簡介 Bit Manipulation 簡介 在電腦之中,數值都是已二進位去做儲存 對於數值來說有些...

鐵人賽 自我挑戰組 DAY 28

技術 圖解 blind 75: Math & Geometry - Rotate Image(3/3)

Rotate Image You are given an n x n 2D matrix representing an image, rotate the...

鐵人賽 自我挑戰組 DAY 28

技術 圖解 blind 75: Math & Geometry - Spiral Matrix(2/3)

Spiral Matrix Given an m x n matrix, return all elements of the matrix in spiral...

鐵人賽 自我挑戰組 DAY 28

技術 圖解 blind 75: Math & Geometry - Set Matrix Zeroes(1/3)

Set Matrix Zeroes Given an m x n integer matrix matrix, if an element is 0, set...

鐵人賽 自我挑戰組 DAY 28

技術 圖解 blind 75: Math & Geometry 題型

圖解 blind 75: Math & Geometry 題型 Math & Geometry 題型 這類題型主要可以透過一些數學特性或是幾何學...

鐵人賽 自我挑戰組 DAY 27

技術 圖解 blind 75: Intervals - Insert Interval(2/2)

Insert Interval You are given an array of non-overlapping intervals intervals wh...

鐵人賽 自我挑戰組 DAY 27

技術 圖解 blind 75: Intervals - Merge Intervals(1/2)

Merge Intervals Given an array of intervals where intervals[i] = [starti, endi],...

鐵人賽 自我挑戰組 DAY 26

技術 圖解 blind 75: Intervals - Non-overlapping Intervals(3/3)

Non-overlapping Intervals Given an array of intervals intervals where intervals[...

鐵人賽 自我挑戰組 DAY 26

技術 圖解 blind 75: Intervals - Meeting Rooms II(2/3)

Meeting Rooms II Given an array of meeting time intervals consisting of start an...

鐵人賽 自我挑戰組 DAY 26

技術 圖解 blind 75: Intervals - Meeting Rooms(1/3)

Meeting Rooms Given an array of meeting time intervals consisting of start and e...

鐵人賽 自我挑戰組 DAY 26

技術 圖解 blind 75: Intervals 資料類型介紹

圖解 blind 75: Intervals 資料類型介紹 Intervals 資料類型介紹 Intervals 資料類型是筆者自己對這類資料的分類 並非是真正...

鐵人賽 自我挑戰組 DAY 25

技術 圖解 blind 75: Greedy - Maximum Subarray(2/2)

Maximum Subarray Given an integer array nums, find the contiguous subarray (cont...

鐵人賽 自我挑戰組 DAY 25

技術 圖解 blind 75: Greedy - Jump Game(1/2)

Jump Game You are given an integer array nums. You are initially positioned at t...

鐵人賽 自我挑戰組 DAY 25

技術 圖解 blind 75: Greedy 策略簡介

Greedy 策略簡介 Greedy 策略 是種解決問題的策略。 類似於動態規劃 ,Greedy 策略 也是透過把原本問題拆解成子問題去解。每次解決子問題都選擇...

鐵人賽 自我挑戰組 DAY 24

技術 圖解 blind 75: Dynamic Programming - Unique Paths(2/2)

Unique Paths There is a robot on an m x n grid. The robot is initially located a...

鐵人賽 自我挑戰組 DAY 24

技術 圖解 blind 75: Dynamic Programming - Longest Common Subsequence(1/2)

Longest Common Subsequence Given two strings text1 and text2, return the length...

鐵人賽 自我挑戰組 DAY 23

技術 圖解 blind 75: Dynamic Programming - Coin Change(4/4)

Coin Change You are given an integer array coins representing coins of different...

鐵人賽 自我挑戰組 DAY 23

技術 圖解 blind 75: Dynamic Programming - Maximum Product Subarray(3/4)

Maximum Product Subarray Given an integer array nums, find a contiguous non-empt...

鐵人賽 自我挑戰組 DAY 23

技術 圖解 blind 75: Dynamic Programming - Word Break(2/4)

Word Break Given a string s and a dictionary of strings wordDict, return true if...

鐵人賽 自我挑戰組 DAY 23

技術 圖解 blind 75: Dynamic Programming - Longest Increasing Subsequence(1/4)

Longest Increasing Subsequence Given an integer array nums, return the length of...

鐵人賽 自我挑戰組 DAY 22

技術 圖解 blind 75: Dynamic Programming - Palindromic Substrings(3/3)

Palindromic Substrings Given a string s, return the number of palindromic substr...

鐵人賽 自我挑戰組 DAY 22

技術 圖解 blind 75: Dynamic Programming - Longest Palindromic Substring(2/3)

Longest Palindromic Substring Given a string s, return the longest palindromic s...

鐵人賽 自我挑戰組 DAY 22

技術 圖解 blind 75: Dynamic Programming - Decode Ways(1/3)

Decode Ways A message containing letters from A-Z can be encoded into numbers us...

鐵人賽 自我挑戰組 DAY 21

技術 圖解 blind 75: Dynamic Programming - House Robber II(3/3)

House Robber II You are a professional robber planning to rob houses along a str...